home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
gnustuff
/
minix
/
libsrc~1.z
/
libsrc~1
/
ptrace.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-12-28
|
284 b
|
17 lines
#include "lib.h"
#define OK 0
PUBLIC long ptrace(req, pid, addr, data)
int req, pid;
long addr, data;
{
M.m2_i1 = pid;
M.m2_i2 = req;
M.m2_l1 = addr;
M.m2_l2 = data;
if (callx(MM, PTRACE) == -1) return -1;
if (M.m2_l2 == -1) {errno = OK; return -1;}
return M.m2_l2;
}